Exclude trials where target was not presented.
Exclude other cases where SPE not applicable, namely Response.pos == FALSE
## Loading objects:
## allDays
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
Install the mixture modeling R library
#devtools::install_github('alexholcombe/mixRSVP',build_vignettes=TRUE) #If want latest version
library(mixRSVP)
Set up the experiment-specific parameters
numItemsInStream<- 16 #from their Methods section
annotateIt<-TRUE
minSPE<- -13 #targetSP = 14, subject reports first letter in stream (1)
maxSPE<- 13 #targetSP = 3 and response position is 16```
Ultimately want to analyze data broken down by: * Group (determines in which serial positions the targets appeared) * Condition (3-day, 2-day, 1-day) * targetSP (formerly known as TargPos (target position this trial)) * Block (epochs of trials basically) * Subject
condtnVariableNames <- c("Group","Condition","targetSP","Subject","Epoch")
Define function to plot bunch of subjects.
Facets by “Subject+targetSP~Block”, meaning that should break the data down by Group and Condition separately.
library(ggplot2)
plotBunch<- function(df,curves) {
#Columns are epochs
#Label rows by Subject+targetSP combinations. Outermost label is Subject, inner is targetSP
g=ggplot(df, aes(x=SPE)) + facet_grid(Subject+targetSP~Epoch) #, scales="free_y")
g<-g+geom_histogram(binwidth=1,color="grey90") + xlim(minSPE,maxSPE)
g<-g+ geom_text(x=12, y= 33, aes(label = Subject)) #inset subject name/number. Unfortunately it overwrites itself a million times
g<-g +theme_apa() #+theme(panel.grid.minor=element_blank(),panel.grid.major=element_blank())# hide all gridlines.
#g<-g+ theme(line=element_blank(), panel.border = element_blank())
sz=.8
#Plot the underlying Gaussian , not just the discretized Gaussian. But it's way too tall. I don't know if this is
#a scaling problem or what actually is going on.
#g<-g + geom_line(data=gaussFine,aes(x=x,y=gaussianFreq),color="darkblue",size=1.2)
if (!is.null(curves)) {
g<-g+ geom_point(data=curves,aes(x=x,y=combinedFitFreq),color="chartreuse3",size=sz*2.5)
#g<-g+ geom_line(data=curves,aes(x=x,y=guessingFreq),color="yellow",size=sz)
#Discretized Gaussian
#g<-g+ geom_line(data=curves,aes(x=x,y=gaussianFreq),color="lightblue",size=sz)
#mixSig - whether mixture model statistically significantly better than guessing
curves <- dplyr::mutate(curves, mixSig = ifelse(pLRtest <= .05, TRUE, FALSE)) #annotate_fit uses this to color the p-value
g<- annotate_fit(g,curves) #assumes curvesDf includes efficacy,latency,precision
#Somehow the which mixSig (TRUE or FALSE) is red and which green is flipped relative to plot_hist_with_fit even though
#identical commands are used. I haven't been able to work out why.
#g<- g + scale_color_manual(values=c("red","forestgreen")) #already done in annotate_fit
}
return (g)
}
Epoch (groups of 3 blocks) is the smallest group of trials that Shin & Junker want a graph for.
So, create epochs out of group triplets, specifically blocks 2-4, 5-7, [skip 8 because practice], 9-11, 12-14, [skip 15 because practice], 16-18, and 19-21
lookupEpoch= data.frame(
Epoch=c("practice1", "1","1","1","2","2","2","practice2","3","3","3","4","4","4", "practice3", "5","5","5","6","6","6"),
Block=c(1, 2,3,4, 5,6,7, 8, 9,10,11, 12,13,14, 15, 16,17,18, 19,20,21))
allDays <- plyr::join(allDays,lookupEpoch,by='Block') #https://stackoverflow.com/questions/10158617/how-do-i-replace-numeric-codes-in-a-data-frame-with-value-labels-from-a-data-fr?noredirect=1&lq=1
#Add practice TRUE/FALSE column
allDays$practice <- FALSE
allDays<-allDays %>% mutate(practice= ifelse(Epoch=="practice1" | Epoch=="practice2" | Epoch=="practice3", TRUE, FALSE)) #https://stackoverflow.com/questions/24459752/can-dplyr-package-be-used-for-conditional-mutating#24459900
Get ready to plot bunches by fitting data, calculating psychometric curves. will take up pages and pages of NaN warnings.
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.489294268025032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.46705361947844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.455933295205144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.450373133068496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444812970931848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.444812970931848 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.47502078078738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66807749083112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.76460584585299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.81287002336393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.86113420087486 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.86113420087486 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.486944204674271 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.464810377189077 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.45374346344648 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.448210006575181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.442676549703882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0215639458008531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0205837664462689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0200936767689768 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0198486319303307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0196035870916846 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0196035870916846 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0357283931719224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0377133039036958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387057592695826 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0392019869525259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0396982146354693 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.432530379554906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.412869907756955 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.40303967185798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.398124553908493 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.393209435959005 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.405772870300227 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.428315807539129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.43958727615858 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445223010468305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.45085874477803 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.45085874477803 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346630652565988 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.330874713812989 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.322996744436489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.319057759748239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31511877505999 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.31511877505999 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0888429643161394 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0937786845559249 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0962465446758177 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0974804747357641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0987144047957105 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0987144047957105 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.08057672152003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.25171987271559 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.33729144831337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.38007723611226 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.42286302391114 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.42286302391114 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464318820923901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.443213419972814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.432660719497271 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.4273843692595 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422108019021728 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.180647124943382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190683076329126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.195701052021998 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.198210039868434 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200719027714869 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200719027714869 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.35836992379504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.20571674544072 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.12939015626356 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.09122686167498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.0530635670864 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.0530635670864 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.398757846843661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.420911060557198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.431987667413966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.437525970842351 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.443064274270735 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.391660307059637 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.373857565829653 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.364956195214661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.360505509907166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35605482459967 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35605482459967 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.019037542394753 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0181721995586279 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0177395281405653 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.017523192431534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0173068567225027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0173068567225027 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.093232911081807 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0889950514871794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0868761216898656 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0858166567912087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0847571918925518 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523686556687518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.499882622292631 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.487980655095187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.482029671496465 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.476078687897743 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.111178712655828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.117355307803374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.120443605377147 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.121987754164034 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12353190295092 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.12353190295092 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.115119523503338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.121515052586857 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.124712817128617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.126311699399496 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.127910581670376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.464590566917254 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.443472813875561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.432913937354714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.427634499094291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.422355060833867 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.422355060833867 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.390403023365275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.412092080218901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.422936608645714 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.428358872859121 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.433781137072528 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.433781137072528 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.211175634713298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.201576742226329 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.196777295982845 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.194377572861103 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191977849739361 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191977849739361 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.268086551644466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.282980248958047 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.290427097614838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.294150521943233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.297873946271629 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.304566045952186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.321486381838418 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.329946549781534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.334176633753092 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338406717724651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44537006681862 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.470112848308544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.482484239053506 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.488669934425986 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494855629798467 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.494855629798467 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.57074757112963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.4993499542601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46365114582533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44580174160795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42795233739057 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42795233739057 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0670458204368604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0707705882389082 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0726329721399321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0735641640904441 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.074495356040956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.276782504152793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.264201481236757 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.257910969778739 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.25476571404973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.251620458320721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.251620458320721 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.180487464949152 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.190514546335216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.195528087028248 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.198034857374764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.20054162772128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.126905830396938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.121137383560713 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.118253160142601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.116811048433545 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.115368936724489 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.506344545611226 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.483328884447079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.471821053865006 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.466067138573969 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460313223282933 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.460313223282933 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.71920293245767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.87026976203865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.94580317682914 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.98356988422439 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.02133659161963 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.02133659161963 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.75706795027806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.85468283640462 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.9034902794679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.92789400099954 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95229772253118 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95229772253118 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483132398162014 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.461171834609195 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.450191552832786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444701411944581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439211271056376 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132094831498667 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.139433433248593 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143102734123556 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.144937384561037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146772034998519 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371161559894305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.3917816465551 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.402091689885497 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.407246711550696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.412401733215895 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.412401733215895 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.490971357621128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.468654477729259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.457496037783324 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.451916817810356 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.446337597837389 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.446337597837389 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.36973697119825 -8.90046749886356e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44583346959816 -3.83938235991154e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.48388171879811 -1.30883979043553e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.50290584339808 -4.35685056975209e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.52192996799806 -8.77841939123742e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.52192996799806 -8.77841939123742e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.451264472936026 -8.57639957459513e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.476334721432472 -3.49731066207264e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.488869845680695 -9.57766205811393e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.501404969928918 -8.41837992737519e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.501404969928918 -8.41837992737519e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.435525893890257 -8.89040567144914e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459721776884161 -3.8287615420852e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.471819718381112 -1.29793947740323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477868689129588 -3.25284450622478e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483917659878064 -8.76724070097999e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483917659878064 -8.76724070097999e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.514292850104776 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.490915902372741 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.479227428506723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.473383191573715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467538954640706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467538954640706 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.239632055932438 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.228739689753691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.223293506664317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.220570415119631 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.217847323574944 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00122546692024745 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00129354841581675 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0013275891636014 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00134460953749373 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00136162991138605 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00136162991138605 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.767691290334773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.810340806464482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.831665564529337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.842327943561764 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.852990322594192 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01743676394755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0739610286113 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10222316094318 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.11635422710912 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13048529327505 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.920968332241923 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.972133239588697 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.997715693262084 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01050692009878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.02329814693547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.02329814693547 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42312671459157 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.403893682110135 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.394277165869418 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.389468907749059 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.3846606496287 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0593688222679079 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626670901716806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0643162241235669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0651407910995101 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0659653580754532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0659653580754532 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.311622190777376 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.328934534709453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.337590706675491 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.34191879265851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.346246878641529 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0151631188985688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0144738862213611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0141292698827573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0139569617134554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0137846535441534 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0137846535441534 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.73569328204805 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.56588904195495 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.48098692190841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.43853586188514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.39608480186186 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.39608480186186 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.28483999136054 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.46733110199168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.55857665730725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.60419943496504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.64982221262282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.64982221262282 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.6288226722448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.55478527805186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51776658095538 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49925723240715 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48074788385891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48074788385891 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0220042814142598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0210040868045207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0205039894996512 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0202539408472164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0200038921947816 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0200038921947816 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0473494479962439 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.045197200360051 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0441210765419545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0435830146329063 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0430449527238581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0430449527238581 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0742814424249035 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0784081892262871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0804715626269788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0815032493273247 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0825349360276706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0824230599285847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0870021188135061 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0892916482559667 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0904364129771971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0915811776984274 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.293198560226554 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.279871352943529 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.273207749302016 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.26987594748126 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.266544145660504 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.266544145660504 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0325585289145178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0310785957820398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0303386292158007 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0299686459326812 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0295986626495617 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0295986626495617 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.909087756766083 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.959592632141977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.984845069829924 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.997471288673897 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.01009750751787 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.471639008657533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.497841175805174 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.510942259378994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.517492801165904 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524043342952814 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.24653946869604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.31579166140138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.35041775775405 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.36773080593038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38504385410671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.38504385410671 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.58860844396834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.51639896924251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.48029423187959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46224186319814 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44418949451668 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.52606870246646 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.45670194326344 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42201856366193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40467687386117 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38733518406042 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.20536264006065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.1505734291488 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.12317882369288 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.10948152096492 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.09578421823695 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.09578421823695 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0814155756295466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0777148676463854 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0758645136548048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0749393366590145 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0740141596632242 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0835983778052678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0882427321277826 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0905649092890401 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0917259978696688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0928870864502975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0928870864502975 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.70324742721868 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.742316728730829 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.761851379486904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.771618704864941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.781386030242978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.781386030242978 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0391944020195921 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0374128382914288 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0365220564273472 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0360766654953064 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0356312745632655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.429644308250647 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.453513436486794 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.465448000604868 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.471415282663905 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.477382564722941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.477382564722941 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.159886794637971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.16876939434008 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.173210694191135 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.175431344116663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.17765199404219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0862210963748078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0823019556304984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0803423852583437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0793626000722663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.078382814886189 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.00950293596911971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.010030876856293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0102948472998797 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.010426832521673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0105588177434663 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0105588177434663 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.56153571133399 -8.74750988780272e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.44510226990971 -3.67792710379176e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.38688554919758 -1.14313571178628e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.32866882848544 -8.60848348534883e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.92518921394827 -9.07023714771532e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.03214417027873 -4.01858365592173e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.08562164844396 -1.49275691002493e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.11236038752658 -2.29843537076532e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.13909912660919 -8.96703347111172e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.13909912660919 -8.96703347111172e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.30781160323847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.11200198490945 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.01409717574494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.96514477116268 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.91619236658043 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.91619236658043 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.01263587029339 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.87569787618915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.80722887913702 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.77299438061096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.7387598820849 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.7387598820849 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.29185983334279 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.47474093519517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.56618148612136 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.61190176158445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.65762203704754 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.65762203704754 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.29412092772802 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.09893361283129 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.00133995538293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.95254312665875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.90374629793456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.90374629793456 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267490212771819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.282350780148032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.289781063836138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.293496205680191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.297211347524244 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.297211347524244 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.40522396885721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.386804697545518 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.377595061889673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.37299024406175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368385426233827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.368385426233827 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.474729373139986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.453150765269987 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.442361461334987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.436966809367487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.431572157399987 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.361372302799794 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.381448541844227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.391486661366444 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.396505721127552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.401524780888661 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.401524780888661 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254408133496013 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.242844127428013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.237062124394012 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.234171122877012 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.231280121360012 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.316435410338093 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334015155356876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342805027866267 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347199964120963 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.351594900375659 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.259173317471602 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.273571835108913 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280771093927568 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.284370723336896 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.287970352746224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.287970352746224 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.953115876330102 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.00606675834844 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.03254219935761 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04577991986219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05901764036678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.950615907615478 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.003427902483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.02983389991677 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04303689863365 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05623989735053 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480875910261797 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.507591238609674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.520948902783613 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.527627734870583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.534306566957552 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.534306566957552 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.02776951111107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.89014362424239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.82133068080804 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.78692420909087 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.7525177373737 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.7525177373737 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.361704469156003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345263356921639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.337042800804457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.332932522745867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.328822244687276 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.328822244687276 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.06444841982372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.23469555425838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.3198191214757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.36238090508436 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40494268869303 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40494268869303 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.531316155780409 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.507165421426754 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.495090054249927 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.489052370661513 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.483014687073099 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0322060717666939 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0339952979759547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0348899110805851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0353372176329003 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0357845241852155 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.20808852831986 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.198629958850775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193900674116233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191536031748962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.189171389381691 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.189171389381691 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0115635804162272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0110379631245805 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0107751544787572 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0106437501558455 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0105123458329338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0824943389246558 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0787445962462624 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768697249070657 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0759322892374673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0749948535678689 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.163416310392618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.155988296283862 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.152274289229485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.150417285702296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148560282175107 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.148560282175107 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231848365093608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.244728829821031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.251169062184742 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.254389178366598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.257609294548454 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.444421320355549 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.469111393708636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.481456430385179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48762894872345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.493801467061722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.089089056755114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0850395541753361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0830148028854471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0820024272405026 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0809900515955582 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0809900515955582 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.321416360861057 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.339272825353338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.348201057599479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.352665173722549 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.357129289845619 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.357129289845619 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.365452818891527 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.385755753274389 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.395907220465821 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.400982954061536 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.406058687657252 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.220316591396635 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.210302200878606 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.205295005619591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.202791407990084 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.200287810360577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.25585569040242 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.244225886293219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238410984238619 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.235503533211319 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.232596082184018 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.232596082184018 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.45661719826289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.29949823470549 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.22093875292678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.18165901203743 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.14237927114808 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.14237927114808 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.200561612451258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211703924254106 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.217275080155529 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.220060658106241 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222846236056953 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.502302098950371 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.479470185361718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.468054228567391 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.462346250170228 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456638271773065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.419039317747117 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.399992076031339 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39046845517345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.385706644744506 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.380944834315561 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.380944834315561 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.294393089275591 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.310748260902013 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.318925846715224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.323014639621829 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327103432528435 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327103432528435 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.464398744896911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.44328971103796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.432735194108485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.427457935643748 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.42218067717901 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0635647510318536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0606754441667693 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0592307907342272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0585084640179561 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0577861373016851 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0577861373016851 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.54561122189774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.42990162090239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.37204682040471 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.34311942015588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.31419201990704 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.31419201990704 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0628119838346312 -9.03703490180873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0663015384921107 -3.9835368407981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0680463158208504 -1.45678781029279e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0689187044852203 -1.93413295040133e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0697910931495902 -8.9301457759095e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252179072805524 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.266189021294719 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.273193995539317 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276696482661616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280198969783915 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280198969783915 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11717324546497 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.111847188852926 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.109184160546904 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.107852646393893 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106521132240882 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0921259939555767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0972441047308865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0998031601185414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101082687812369 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102362215506196 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.102362215506196 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0162173842448422 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0154802304155312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0151116535008757 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.014927365043548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0147430765862202 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0147430765862202 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.74047626666547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.66136370908977 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.62180743030192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.60202929090799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.58225115151407 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.58225115151407 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.540116532979142 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.51556578148009 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.503290405730564 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.497152717855801 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.491015029981038 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.04376566392956 -9.09999999999873e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.21286375637009 -4.04999999999866e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29741280259036 -1.52499999999863e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33968732570049 -2.6249999999861e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.38196184881062 -9.00009999999859e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400781125443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.470145268965745 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.482517512885897 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.488703634845972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494889756806048 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494889756806048 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.1208943845091 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.06994463975869 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04446976738348 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.03173233119588 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01899489500828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.566152355245844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.540418157280123 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.527551058297263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.521117508805833 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.514683959314403 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.514683959314403 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.17213413857721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.07340076864188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02403408367422 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.99935074119038 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.97466739870655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.58609818795048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.46854827031637 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40977331149931 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.38038583209078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.35099835268225 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.35099835268225 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.134943212727009 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.128809430330326 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.125742539131985 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.124209093532815 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.122675647933644 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.122675647933644 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31621168219872 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.30183842391696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29465179477608 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29105848020564 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.2874651656352 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.2874651656352 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.49451507488613 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.33567348057312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.25625268341662 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.21654228483837 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.17683188626011 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.17683188626011 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.21855680296704 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28625440313188 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.3201032032143 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.33702760325551 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.35395200329672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.54579472129515 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.576116650255992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.591277614736413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.598858096976623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.606438579216834 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.606438579216834 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.546274782062919 -8.60332842930201e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.521444110150968 -3.52573556426323e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.509028774194992 -9.86939131743842e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.496613438239017 -8.44829788495453e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.430966296705692 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.411376919582706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.401582231021213 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.396684886740466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39178754245972 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238312949701706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.227480542897083 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.222064339494771 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.219356237793616 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21664813609246 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21664813609246 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.00277637414354 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.05848617270707 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08634107198883 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.10026852162972 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1141959712706 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14709873366114 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.21082644108676 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24269029479957 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25862222165597 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27455414851238 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27455414851238 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.326580323089686 -9.09999999995536e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.344723674372447 -4.04999999995288e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.353795350013827 -1.52499999995164e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.358331187834517 -2.62499999951022e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362867025655207 -9.00009999995041e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362867025655207 -9.00009999995041e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0264557196903531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0252531869771553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0246519206205563 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0243512874422569 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0240506542639574 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0240506542639574 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.47788881030801 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4107120462031 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37712366415064 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.36032947312442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34353528209819 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34353528209819 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0949148002356526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.090600491134032 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0884433365832217 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0873647593078166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0862861820324115 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.251747760057581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.265733746727447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.272726740062379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276223236729846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279719733397312 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279719733397312 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333257499821169 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31810943164748 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.310535397560635 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.306748380517213 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.30296136347379 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387051003907379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0408553837457789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0419305254232994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0424680962620596 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0430056671008199 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165339201277516 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.1745247124596 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179117468050642 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181413845846163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183710223641684 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183710223641684 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.30515147403884 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.20037186158253 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.14798205535437 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.12178715224029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.09559224912622 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.09559224912622 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.807611694903762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.770902072408136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.752547261160323 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.743369855536417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.734192449912511 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.734192449912511 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.119252475252965 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.125877612767019 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.129190181524046 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130846465902559 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132502750281073 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132502750281073 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.876689333773662 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.925394296761088 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.949746778254801 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.961923019001657 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.974099259748514 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09139353194349 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15202650594036 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.18234299293879 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.197501236438 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.21265947993722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.21265947993722 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.277316992391811 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.26471167455582 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.258409015637824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.255257686178826 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.252106356719828 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.049557324228995 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0523105089083836 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0536871012480779 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.054375397417925 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0550636935877722 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0550636935877722 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.167806363617848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.177128939374396 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181790227252669 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.184120871191806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186451515130943 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186451515130943 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.258190512750962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.272534430126015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.279706388813542 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.283292368157305 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.286878347501069 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.207989794756518 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.219544783354102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.225322277652894 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.22821102480229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.231099771951687 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.231099771951687 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.373033211537428 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.393757278845063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.404119312498881 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.409300329325789 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.414481346152698 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0214519461366774 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0226437209220483 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0232396083147338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0235375520110766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0238354957074193 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.343962094413463 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363071099658655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.372625602281251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.37740285359255 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.382180104903848 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.382180104903848 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.125028899840159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.131974949831278 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.135447974826838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137184487324618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.138920999822398 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.205443495660911 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.216857023197628 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.222563786965987 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.225417168850166 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.228270550734345 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0862503068107659 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0910419905224751 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0934378323783297 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.094635753306257 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0958336742341843 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0958336742341843 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.56951202732958 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.49817057154187 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46249984364802 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44466447970109 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.42682911575417 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.05496974678772 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.00701657647919 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.983039991324921 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.971051698747787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.959063406170654 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.61103653053924 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.53780759733291 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.50119313072975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.48288589742817 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.46457866412658 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.46457866412658 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.123368698924546 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.130222515531465 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.133649423834925 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.135362877986655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.137076332138385 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.152030033550627 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.160476146525662 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.164699203013179 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.166810731256938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168922259500696 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168922259500696 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.362796808467468 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.34630604444622 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.338060662435596 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.333937971430283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329815280424971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329815280424971 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.361313664674391 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.381386646045191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.391423136730591 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.39644138207329 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40145962741599 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.40145962741599 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.15975615715247 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22418705477206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25640250358185 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27251022798674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28861795239164 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.32423903316112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.39780786833673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.43459228592454 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.45298449471845 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.47137670351235 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.733218409569806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.773952765657017 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.794319943700623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.804503532722426 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.814687121744229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.814687121744229 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.04781192063167 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.1060236940001 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.13512958068431 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14968252402642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16423546736852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.909853083977604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.960400477531916 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.985674174309071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998311022697649 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01094787108623 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.792558729828344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.836589770374363 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.858605290647373 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.869613050783878 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.880620810920382 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.880620810920382 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.2255274381344 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.12436710003738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.07378693098887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.04849684646462 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.02320676194037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.40589303473191 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.29653426042592 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.24185487327292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.21451517969642 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.18717548611992 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.45680171738158 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.34512891204605 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.28929250937829 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.2613743080444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -2.23345610671052 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -2.23345610671052 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.582246334700003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.555780592213639 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.542547720970457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.535931285348866 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529314849727275 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529314849727275 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.213057558643276 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.203373124159491 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.198530906917598 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.196109798296652 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.193688689675705 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.131711482654906 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.125724597079683 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.122731154292071 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.121234432898265 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.11973771150446 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358060398035773 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.341784925397783 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.333647189078788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329578320919291 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325509452759793 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325509452759793 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.13207439646964 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.126071014811929 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.123069323983073 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.121568478568646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.120067633154218 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0705601713177146 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0744801808353655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0764401855941909 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0774201879736036 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0784001903530163 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.326833812080435 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.311977729713143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.304549688529496 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.300835667937673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.29712164734585 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.29712164734585 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.429968011854814 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.410424011315959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.400652011046531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.395766010911818 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.390880010777104 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.240802981466726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.254180924881544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.260869896588953 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.264214382442658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.267558868296362 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.280487057642449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.267737645931428 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.261362940075918 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.258175587148163 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.254988234220408 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.254988234220408 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.345795757200959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.365006632601012 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.374612070301039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.379414789151052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.384217508001065 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.250152992938331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.264050381434905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.270999075683192 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.274473422807335 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.277947769931479 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.277947769931479 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0341381173454942 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0325863847388808 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0318105184355741 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0314225852839208 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0310346521322674 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0310346521322674 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.66986808903758 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.59396499408132 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.5560134466032 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.53703767286413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51806189912507 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51806189912507 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0733429701964446 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0774175796518026 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0794548843794816 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0804735367433212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0814921891071607 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.179778456098536 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.189766148104011 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.194759994106748 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.197256917108116 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199753840109485 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199753840109485 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.62970869180072 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.72024806356742 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.76551774945078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.78815259239245 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.81078743533413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.05403541989879 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.16814849878206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.22520503822369 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.2537333079445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.28226157766532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.43977727273517 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.51976489899824 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.55975871212977 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.57975561869554 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59975252526131 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59975252526131 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.40023099631369 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.58913271833112 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.68358357933983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.73080900984419 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.77803444034855 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.77803444034855 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32631436738598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.344442943351867 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.353507231334811 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.358039375326283 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362571519317755 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147180265939519 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155356947380604 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.159445288101146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.161489458461417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163533628821688 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00136336751110266 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.001301396260598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00127041063534566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0012549178227195 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00123942501009333 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00123942501009333 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.6091105980498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.53596920722935 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.49939851181913 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48111316411402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.46282781640891 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.47184851362981 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40494630846482 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.37149520588233 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35476965459108 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33804410329983 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33804410329983 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.10957928582352 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.05914386374063 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.03392615269919 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.02131729717847 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.00870844165775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.12194192903464 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.07094456862397 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04544588841864 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.03269654831598 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.01994720821331 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.895591893003016 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.854883170593788 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.834528809389174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.824351628786867 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.81417444818456 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.81417444818456 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.486546173881572 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.513576516874993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.527091688371703 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.533849274120058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.540606859868413 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.540606859868413 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0486469213052871 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0464356976095923 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0453300857617448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0447772798378211 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0442244739138974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0442244739138974 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45354722038877 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38747689218928 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35444172808954 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.33792414603966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32140656398979 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32140656398979 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.141543593649686 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149407126630224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153338893120493 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155304776365628 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157270659610762 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.16174627430514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.154394170927634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.15071811923888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.148880093394504 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147042067550127 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.16009163547148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.152814742950049 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.149176296689334 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.147357073558976 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.145537850428618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.145537850428618 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.110578349477498 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.116721591115136 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.119793211933956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.121329022343366 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.122864832752775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.122864832752775 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.228366523610526 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.241053552699999 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.247397067244736 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.250568824517105 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.253740581789473 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.380397718307489 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.363106912929876 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.354461510241069 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.350138808896666 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345816107552263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345816107552263 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0595081603249476 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0628141692318891 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0644671736853599 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0652936759120953 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0661201781388307 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.446737411009511 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.471556156065595 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.483965528593637 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.490170214857658 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.496374901121679 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0591475222045194 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0564589984679504 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0551147365996658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0544426056655236 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0537704747313813 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0537704747313813 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.347274880618238 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.366567929541474 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.376214454003092 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.3810377162339 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.385860978464709 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0775234049079755 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0818302607361964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0839836886503068 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.085060402607362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0861371165644172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.189418460172048 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199941707959385 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.205203331853053 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.207834143799887 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210464955746721 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210464955746721 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.11111030508538 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.22839421092345 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.28703616384249 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.31635714030201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.34567811676153 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.34567811676153 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.135340464748002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.129188625441275 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.126112705787911 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.124574745961229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.123036786134547 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.123036786134547 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.600126416918885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.572847943422572 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.559208706674415 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.552389088300337 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.545569469926259 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44226762030099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3767100011964 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3439311916441 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32754178686795 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.31115238209181 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.31115238209181 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.276931485495604 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.292316568023138 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.300009109286905 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.303855379918788 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.307701650550672 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.307701650550672 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.434231775864021 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.414493967870202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.404625063873293 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.399690611874838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.394756159876383 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0400654334313916 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0382442773663284 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0373336993337968 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0368784103175309 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0364231213012651 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.016554020782104 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0158015652920084 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0154253375469606 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0152372236744367 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0150491098019128 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0150491098019128 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.313840049412404 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.299574592620931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.292441864225195 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.288875500027326 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285309135829458 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.469086459415576 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.447764347623959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.43710329172815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.431772763780246 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.426442235832342 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.426442235832342 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.306055305169052 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.292143700388641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.285187897998435 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.281709996803332 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.278232095608229 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0468930935715831 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0494982654366711 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0508008513692151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.051452144335487 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.052103437301759 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.052103437301759 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.85764640368648 -8.87084608210812e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.01640453722461 -3.80811530889191e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.09578360399368 -1.2767499222838e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.13547313737822 -1.10672289797434e-07"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.17516267076275 -8.74550999722212e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.17516267076275 -8.74550999722212e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0395453610845258 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0417423255892216 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0428408078415696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0433900489677435 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0439392900939175 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.51867443255383 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.495098321983202 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.483310266697887 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.47741623905523 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.471522211412573 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.471522211412573 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.85723741795261 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.68190844440931 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.59424395763766 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.55041171425183 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.50657947086601 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.50657947086601 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.951540614277306 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.00440398173716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.03083566546708 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04405150733204 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05726734919701 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05726734919701 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.432565885314148 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.456597323387157 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.468613042423661 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.474620901941913 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.480628761460165 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0195112985242684 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0186244213186198 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0181809827157955 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0179592634143834 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0177375441129712 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0177375441129712 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.066609534896744 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0635818287650738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0620679756992387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0613110491663212 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0605541226334037 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.392862508976053 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414688203919168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.425601051390725 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.431057475126503 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436513898862282 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.329300808346235 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.347595297698803 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.356742542375088 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.36131616471323 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.365889787051372 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.365889787051372 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.505212037946896 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.533279373388391 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.547313041109138 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.554329874969511 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.561346708829885 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.561346708829885 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.115217612973018 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.121618591471519 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.124819080720769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.126419325345395 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12801956997002 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163875733486708 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.172979940902636 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.177532044610601 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179808096464583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.182084148318565 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.182084148318565 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.99945661966181 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.16609309853191 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.24941133796696 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.29107045768449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.33272957740201 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.33272957740201 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0969453876773598 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.102331242548324 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.105024169983806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.106370633701548 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.107717097419289 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.107717097419289 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.203804849937178 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215127341600354 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.220788587431942 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.223619210347737 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.226449833263531 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.226449833263531 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.17524710558347 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.07637223714786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.02693480293005 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.00221608582115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97749736871224 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.1462769909251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.04871894588305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.99993992336202 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.97555041210151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.951160900841 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.951160900841 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.59132291861608 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.47353551322444 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.41464181052862 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.38519495918071 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -2.3557481078328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.77078507814714 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.69029484732227 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.65004973190984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.62992717420362 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.6098046164974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.6098046164974 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.719479631346285 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.759450721976634 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.779436267291809 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.789429039949396 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.799421812606984 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.02236558501856 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.07916367307515 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10756271710344 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.12176223911759 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -13.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -12.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -11.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -10.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -9.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -8.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -7.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -6.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13596176113173 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13596176113173 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.148834145506153 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.157102709145384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.161236990964999 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.163304131874807 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165371272784615 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165371272784615 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.362309984971032 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.345841349290531 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.33760703145028 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.333489872530155 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329372713610029 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.329372713610029 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.434725423952094 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.458876836393877 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.470952542614769 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.476990395725214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.48302824883566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.48302824883566 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0845891702061933 -8.48970371055772e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0807442079240936 -3.40579836114426e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0788217267830437 -8.63845686437532e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0768992456419939 -8.32206082242963e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.373772303369198 -8.97234004947087e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.394537431334154 -3.91524782999703e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.404919995316632 -1.38670172026011e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.410111277307871 -1.22428665391649e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.415302559299109 -8.85826979496214e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.415302559299109 -8.85826979496214e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.400860732534572 -9.0999999999941e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.423130773230937 -4.04999999999378e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.434265793579119 -1.52499999999361e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.439833303753211 -2.6249999999353e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.445400813927302 -9.00009999999345e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.445400813927302 -9.00009999999345e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.502090405535676 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.479268114374963 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.467856968794607 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.462151396004429 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.456445823214251 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0263427636470099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0251453652994186 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0245466661256229 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0242473165387251 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.0239479669518272 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.0239479669518272 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.413988236788259 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.436987583276496 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.448487256520614 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.454237093142673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.459986929764733 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0789081750549664 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0832919625580201 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.085483856309547 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0865798031853104 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0876757500610738 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.151235719117919 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.159637703513359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.163838695711079 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.165939191809939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.168039687908799 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.168039687908799 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.55263644624706 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.48206206232674 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.44677487036658 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.4291312743865 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -1.41148767840641 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.575736707531187 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.54956685718886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.536481932017697 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.529939469432115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.523397006846533 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.813034795734663 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.776078668655814 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.75760060511639 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.748361573346678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.739122541576966 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.739122541576966 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.497232404987844 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.524856427487169 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.538668438736831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.545574444361663 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.552480449986494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.8982754324726 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.948179623165523 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.973131718511984 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.985607766185214 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.998083813858445 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14753139994652 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.211283144388 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.24315901660873 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.2590969527191 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.27503488882947 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.27503488882947 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.13343531432108 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.19640394289447 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.22788825718117 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.24363041432451 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.25937257146786 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.0341122806447 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.09156296290274 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.12028830403176 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.13465097459627 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.14901364516078 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.66114993443218 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.697880486345079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.716245762301528 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.725428400279753 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.734611038257978 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.734611038257978 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.44835845705071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.427978527184769 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.417788562251798 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.412693579785313 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.407598597318827 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.397833007343562 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.419934841084871 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.430985757955526 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.436511216390853 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.44203667482618 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.44203667482618 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.190737582863374 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.201334115244672 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.206632381435321 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.209281514530646 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.211930647625971 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.211930647625971 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.326776145105071 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.344930375388686 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.354007490530494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.358546048101397 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.363084605672301 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0364060817459757 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0384286418429743 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0394399218914737 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.0399455619157233 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.040451201939973 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.040451201939973 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.79898272192204 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.89892620647327 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.94889794874888 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.97388381988669 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.99886969102449 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.45699475582908 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.5379389089307 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.5784109854815 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.59864702375691 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.61888306203231 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.61888306203231 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.299919082776051 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.316581254041387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.324912339674055 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.329077882490389 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 0.333243425306723 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.23422091015584 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.223574505148756 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.218251302645214 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.215589701393444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.212928100141673 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 -0.212928100141673 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.80730371507436 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.90770947702294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.95791235799722 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 12.5 1.98301379848437 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.00811523897151 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 12.5 2.00811523897151 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.381255058692318 -9.03890169166375e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.363925283297213 -3.98550734120062e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.35526039559966 -1.45881016596906e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.350927951750884 -1.95461578353279e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.346595507902108 -8.93221977943842e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.172035899204577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.181593449160387 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.186372224138292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.188761611627244 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.191150999116197 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.199351778669482 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.210426877484453 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.215964426891939 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.218733201595682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221501976299425 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.304704645196003 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.321632681040226 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.330096698962337 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.334328707923393 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338560716884448 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.338560716884448 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0917950678104983 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0968947937999704 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0994446567947065 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.100719588292074 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101994519789443 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.101994519789443 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.405074214236318 -8.80941867553849e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.386661749952849 -3.74327526862396e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.377455517811115 -1.21020356516669e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.36824928566938 -8.67726414852326e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.41769255525875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.35325198456517 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32103169921838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.30492155654498 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.28881141387159 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.28881141387159 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.358041002138099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.341766411131822 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.333629115628683 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.329560467877114 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.325491820125544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.114054355328047 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.108870066449499 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.106277922010226 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.104981849790589 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.103685777570952 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.103685777570952 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.334731559622738 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.353327757379556 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.362625856257966 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.36727490569717 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.371923955136375 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.205210765745112 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.195883003665789 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.191219122626127 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.188887182106296 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186555241586466 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.186555241586466 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.262127837891213 -9.09113686609981e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.250212936168885 -4.04064446977203e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.244255485307721 -1.51539827160813e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.241276759877139 -2.52775172526185e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.238298034446557 -8.99025305823689e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.504891037719305 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.481941445095701 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.470466648783898 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.464729250627997 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.458991852472096 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0674999425506741 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0712499393590448 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0731249377632302 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0740624369653229 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0749999361674156 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0564160375749998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.059550261884722 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0611173740395831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0619009301170137 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0626844861944442 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0626844861944442 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00673219502241915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00642618615776374 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00627318172543603 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00619667950927217 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.00612017729310832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.37301522556533 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.393738293652293 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.404099827695775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.409280594717515 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.414461361739256 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.414461361739256 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0370947136897761 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0391555311169859 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0401859398305908 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0407011441873932 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0412163485441956 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0412163485441956 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.134544320491388 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.142019004963131 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.145756347199003 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.147625018316939 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.149493689434875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.149493689434875 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.230270854217849 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.219803997207947 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.214570568702996 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.21195385445052 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.209337140198045 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.227247807531865 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.239872685728079 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.246185124826187 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.24934134437524 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.252497563924294 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0348992383690743 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.036838084945134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0378075082331638 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0382922198771787 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0387769315211937 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0387769315211937 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0241148978857345 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0254546144349419 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0261244727095457 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0264594018468475 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0267943309841494 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.280943584881998 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.296551561819886 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.304355550288831 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.308257544523303 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.312159538757775 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.312159538757775 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.3006306727202 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.48399904342688 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.57568322878022 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.62152532145688 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.66736741413355 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.6 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.8 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.9 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.95 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.142483195066697 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.150398928125958 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.154356794655589 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.156335727920404 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.158314661185219 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.340319221731728 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.324850166198467 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.317115638431837 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.313248374548522 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.309381110665207 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.202247599342804 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.213483577084071 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.219101565954705 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.221910560390021 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.224719554825338 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.224719554825338 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.57855693081898 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.41589525214539 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.33456441280859 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2938989931402 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.2532335734718 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -3.2532335734718 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.45582215374385 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.38964841948277 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.35656155235222 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.34001811878695 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.32347468522168 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.977534016747835 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.933100652350206 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.910883970151392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.899775629051984 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.888667287952577 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.888667287952577 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0581535492902625 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0613843020286104 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0629996783977843 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0638073665823713 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0646150547669583 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 0.0646150547669583 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.54029066053138 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.47027744868905 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.43527084276788 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.4177675398073 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.40026423684671 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.51981730941458 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.45073470444119 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.4161934019545 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.39892275071115 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -1.3816520994678 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.737767990764996 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.70423308209386 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.687465627758292 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.679081900590508 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.670698173422724 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 -0.670698173422724 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.79947260277393 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 2.95499885848359 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.03276198633842 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.07164355026584 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.11052511419325 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 11.5 3.11052511419325 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.101225502349687 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.106849141369114 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.109660960878827 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.111066870633684 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.112472780388541 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.405878943508432 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.387429900621685 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.378205379178311 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.373593118456624 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.368980857734938 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.14013704842429 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.147922440003417 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.15181513579298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153761483687762 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.155707831582544 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.155707831582544 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.29975557285915 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.37196421579577 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40806853726408 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.42612069799824 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.44417285873239 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.10036801649547 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.16149957296744 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.19206535120343 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20734824032142 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22263112943941 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.26017292789346 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.33018253499865 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.36518733855124 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.38268974032754 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.40019214210384 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.40019214210384 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.190951513801847 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.182271899538126 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.177932092406266 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.175762188840336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.173592285274406 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.118942258842767 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.12555016211181 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.128854113746331 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.130506089563592 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.132158065380852 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.132158065380852 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.08527777436425 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.14557098405115 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.17571758889461 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.19079089131633 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.20586419373806 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.20586419373806 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.367494882588135 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.387911264954143 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.398119456137146 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.403223551728648 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.40832764732015 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.22865032012277 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.218257123753553 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.213060525568945 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.210462226476641 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.207863927384336 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.207863927384336 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.295179451542952 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.311578309962005 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.319777739171531 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.323877453776295 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.327977168381058 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0528361472284177 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0557714887411075 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0572391594974525 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0579729948756249 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0587068302537974 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0587068302537974 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549902671067588 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.580452819460231 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.595727893656553 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.603365430754714 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.611002967852875 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.665249924719379 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.702208253870456 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.720687418445994 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.729927000733763 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.739166583021532 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.795823993240496 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.840036437309412 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.86214265934387 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.873195770361099 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.884248881378328 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.884248881378328 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.308634329971544 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.32578068163663 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.334353857469173 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.338640445385444 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.342927033301716 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.138558169396763 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.146255845474361 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.15010468351316 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.15202910253256 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.153953521551959 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.153953521551959 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.409680253285592 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.391058423590792 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.381747508743392 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.377092051319692 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.372436593895993 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0274400695784969 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0289645178884134 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0297267420433716 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0301078541208507 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.0304889661983299 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.169843053262189 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.179278778443422 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.183996641034039 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.186355572329347 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.188714503624655 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.188714503624655 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.128786192404949 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.13594098087189 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.139518375105361 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.141307072222097 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.143095769338832 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.205140399694535 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.195815836072056 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.191153554260817 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.188822413355197 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.186491272449578 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.186491272449578 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.494435169991514 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.521903790546598 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.53563810082414 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.542505255962911 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.549372411101682 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.984117233105655 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.03879041272264 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.06612700253113 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.07979529743537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.09346359233962 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.09346359233962 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439165609086776 -8.9658690339943e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.419203535946468 -3.90841731366065e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.409222499376314 -1.37969145349382e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.404231981091237 -1.15328523410408e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.39924146280616 -8.85108049676766e-05"
## [1] "assigning warning from estimate list(message = \"NaNs produced\", call = log(likelihood + 1e-08)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= log(likelihood + 1e-08)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.15121524054499 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.27072719835305 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.33048317725707 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.36036116670909 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.3902391561611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.09500242237754 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.21139144584296 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.26958595757567 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.29868321344202 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.32778046930838 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.32778046930838 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.39725058823308 -9.0900368920719e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.19737556149521 -4.03948338607589e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.09743804812628 -1.51420663307789e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.04746929144181 -2.51568256578889e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -3.99750053475735 -8.98903098709188e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.55323722669408 -9.04023188251923e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.48263553457162 -3.98691143154808e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.44733468851039 -1.4602512060625e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.42968426547978 -1.96921093319712e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.41203384244916 -8.93369762147887e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -1.04261008350337 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.995218716071395 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.971523032355409 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.959675190497417 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.947827348639424 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.947827348639424 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.685619719726769 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.723709704156034 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.742754696370666 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.752277192477982 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.761799688585298 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.15654922108623 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.22080195559102 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.25292832284342 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.26899150646961 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.28505469009581 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.960113182142427 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.01345280337256 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.04012261398763 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.05345751929516 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.0667924246027 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.0667924246027 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.482921104977567 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.460970145660405 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.449994666001824 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.444506926172534 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.439019186343243 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.148742903427809 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.157006398062687 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.161138145380126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.163204019038846 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 0.165269892697566 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 0.165269892697566 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.339797776018575 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.324352422563185 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.31662974583549 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.312768407471643 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.308907069107796 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.449128782217472 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.428713837571223 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.418506365248099 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.413402629086537 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.408298892924975 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.408298892924975 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.00768110110129 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.11921894005137 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.1749878595264 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.20287231926392 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.23075677900144 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.23075677900144 -9.0001e-05"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.84093591794622 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.9432101356099 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 1.99434724444174 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.01991579885766 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 2.04548435327358 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 2.04548435327358 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"You sent me a precision value < 0. That is just crazy.\", call = areaUnderGaussianBin(binStart, binWidth, latency, precision)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= areaUnderGaussianBin(binStart, binWidth, latency, precision)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.4 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.2 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.1 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4.05 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -4 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -4 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.023611451813099 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0225382040034127 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0220015800985695 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0217332681461479 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.0214649561937263 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.517059917349989 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.493557193834081 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.481805832076126 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.475930151197149 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.470054470318172 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.355142861876672 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.339000004518641 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.330928575839626 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.326892861500118 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 -0.322857147160611 -9.0001e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 -0.322857147160611 -9.0001e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.58322110528614 -9.0300405268333e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.7822889444687 -3.97615388943515e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.88182286405998 -1.44921057073607e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.93158982385562 -1.85738911386534e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 3.98135678365126 -8.92237502531179e-05"
## [1] "Got NaN as a result of calling pnorm with: 10.5 3.98135678365126 -8.92237502531179e-05"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate None which is type character"
## [1] "Ultimately assigned "
## [1] "None"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "assigning warning from estimate list(message = \"All upper - lower must be >= 2*rhobeg. Changing rhobeg\", call = bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)) which is type list"
## [1] "Ultimately assigned "
## [1] "message= , call= bobyqa(par = par, fn = ufn, lower = lower, upper = upper, control = mcontrol, ...)"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -4.05e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -1.525e-05"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: -0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 1.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 2.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 3.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 4.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 5.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 6.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 7.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 8.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 9.5 1.34680855633209 -2.625e-06"
## [1] "Got NaN as a result of calling pnorm with: 0.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -5.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -4.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -3.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -2.5 1.21212770069888 -9.1e-05"
## [1] "Got NaN as a result of calling pnorm with: -1.5 1.21212770069888 -9.1e-05"
## [1] "